From: Richard M. Stallman Date: Tue, 12 Apr 1994 14:58:14 +0000 (+0000) Subject: (makeinfo-region): Fix name of tex-start/end-of-header. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~92234 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=86c57d9f8c40c79c7718154d1bd71e397b1f3b0b;p=emacs.git (makeinfo-region): Fix name of tex-start/end-of-header. --- diff --git a/lisp/textmodes/makeinfo.el b/lisp/textmodes/makeinfo.el index 58a1be1e9b1..61269de9e2c 100644 --- a/lisp/textmodes/makeinfo.el +++ b/lisp/textmodes/makeinfo.el @@ -112,12 +112,12 @@ command to gain use of `next-error'." (goto-char (point-min)) (if (and (prog1 - (search-forward texinfo-start-of-header search-end t) + (search-forward tex-start-of-header search-end t) (beginning-of-line) ;; Mark beginning of header. (setq filename-or-header-beginning (point))) (prog1 - (search-forward texinfo-end-of-header nil t) + (search-forward tex-end-of-header nil t) (beginning-of-line) ;; Mark end of header (setq filename-or-header-end (point))))